You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
777 B
17 lines
777 B
// 图片资源均支持一下几种定义方式
|
|
// 支持绝对路径 https://www.xx.com/static/logo.png
|
|
// 支持相对路径 /static/logo.png 使用相对路径时以 public 文件夹作为根路径
|
|
// 支持动态资源 file:logo.png 使用动态资源仅支持访问 assets 下的文件, `file:logo.png` 在代码中被转换为 require("@/assets/logo.png")
|
|
// 如果未传入 variant 则使用 fallback.variant.js 文件作为默认变体
|
|
module.exports = {
|
|
// 网站标题
|
|
PAGE_TITLE: "KK-MANAGE",
|
|
// 网站图标资源(图片资源)
|
|
PAGE_LOGO_URI: "/favicon.ico",
|
|
// 登录页面标题
|
|
SIGN_UP_TITLE: "KK-MANAGE",
|
|
// 侧边栏图片资源(图片资源)
|
|
SIDEBAR_TITLE_IMAGE_URI: "file:logo/logo.png",
|
|
// 侧边栏标题
|
|
SIDEBAR_TITLE: "KK-MANAGE",
|
|
}
|
|
|